home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Windows Version.xpl < prev    next >
Text File  |  2003-10-29  |  1KB  |  41 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="9"
  3. "COUNT"="1"
  4. "UIPATH"="Information\Core"
  5. "NAME"="Windows Version"
  6. "VERSION"="2.05"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="na na"
  9. "DESCRIPTION 1"="This plug-in shows which OS you are running (very useful, isn't it?)"
  10. "AUTHOR"="Xteq Systems"
  11. "CONTACTURL"="http://www.xteq.com"
  12. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  13.  
  14.  
  15. 'Called when the Plugin is started
  16. Sub Plugin_Initialize
  17.  Call SetUIElement(1,"1) Windows 95 (Win95)")
  18.  Call SetUIElement(2,"2) Windows NT (WinNT)")
  19.  Call SetUIElement(3,"3) Windows 98 (Win98)")
  20.  Call SetUIElement(4,"4) Windows 2000 (Win2K)")
  21.  Call SetUIElement(5,"5) Windows Millennium (WinME)")
  22.  Call SetUIElement(6,"6) Windows XP (WinXP)")
  23.  Call SetUIElement(7,"7) Windows 2003 (Win2k3)")
  24.  
  25.  i=GetWinVer
  26.  Call SetUIElementEx(i,True)
  27.  Call Disable()
  28. End Sub
  29.  
  30. 'Called when the Plugin should validate the Data the user has entered
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. 'Called when the Plugin should apply the changes
  35. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  36. End Sub
  37.  
  38. 'Called when the Plugin is about to be removed from memory
  39. Sub Plugin_Terminate
  40. End Sub
  41.